home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / jetski.swf / scripts / DefineSprite_148 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  562 b   |  16 lines

  1. this.targetScaleV = 0;
  2. this.speedV = 0.12;
  3. this.barM._xscale = 0;
  4. this.onEnterFrame = function()
  5. {
  6.    var _loc1_ = this;
  7.    _loc1_.targetScaleV = Math.round(_loc1_._parent.getBytesLoaded() / _loc1_._parent.getBytesTotal() * 100);
  8.    _loc1_.barM._xscale += (_loc1_.targetScaleV - _loc1_.barM._xscale) * _loc1_.speedV;
  9.    _loc1_.win.text = _loc1_._parent.getBytesLoaded() + " / " + _loc1_._parent.getBytesTotal() + " Bytes";
  10.    if(_loc1_.barM._xscale >= 98)
  11.    {
  12.       _loc1_._parent.gotoAndStop("introL");
  13.       _loc1_.onEnterFrame = null;
  14.    }
  15. };
  16.